【CSS】top - 要素の位置(上)
CSSのtopプロパティについて解説します。
検証環境
top
topは“上部の位置”のプロパティです。
基準位置(positionプロパティ)からの相対位置になります。
基本構文
top: 値;
サンプル
<style>
div {
height: 200px;
position: relative;
background: lightgray;
}
p {
position: absolute;
___ih_hl_start
top: 50px;
___ih_hl_end
}
</style>
<div>
<p>CSS : Cascading Style Sheets</p>
</div>